User Table Entity

@Serializable
data class UserTableEntity(val userId: Int, val isAdmin: Boolean, val base: UserTableBase, val profile: UserTableProfile, val asset: UserTableAsset, val experience: UserTableExperience, val additional: UserTableAdditional, val party: UserTableParty? = null) : DataPartUpdater<UserTableEntity>

네트워크로 부터 받아온 유저정보를 SerializedName을 통해 매핑하는 데이터 클래스

Constructors

Link copied to clipboard
constructor(userId: Int, isAdmin: Boolean, base: UserTableBase, profile: UserTableProfile, asset: UserTableAsset, experience: UserTableExperience, additional: UserTableAdditional, party: UserTableParty? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "is_admin" )
@SerializedName(value = "is_admin" )
val isAdmin: Boolean
Link copied to clipboard
val party: UserTableParty? = null
Link copied to clipboard
Link copied to clipboard
val userId: Int

Functions

Link copied to clipboard